home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 April
/
Macworld (1999-04).dmg
/
Serious Software
/
SiteCam 3.0 demo
/
Extras
/
Sample AppleScripts
/
Caption scripts
< prev
next >
Wrap
Text File
|
1997-04-17
|
637b
|
16 lines
-- Example AppleScript to show how to get/set various caption parameters
tell application "SiteCam"
get message of caption 1 of active document
get position of caption 1 of active document
get style of caption 1 of active document
get font of caption 1 of active document
get color of caption 1 of active document
get size of caption 1 of active document
get horizontal justification of caption 1 of active document
get vertical justification of caption 1 of active document
--set message of caption 1 of active document to "new caption"
--set horizontal justification of caption 1 of active document to left
-- etc
end tell